home *** CD-ROM | disk | FTP | other *** search
/ Amiga Desktop Video CD / Amiga DeskTop Video CD.iso / install / install things < prev    next >
Text File  |  1994-11-13  |  1KB  |  63 lines

  1.  
  2.  
  3. ; DTV subsystem Installer script. © Almathera 1994.
  4.  
  5. ; Authored & Hack To Smeggeroonie by THP / Citrus Inc.
  6.  
  7. ;                                   <A subdivsion of Almathera Systems Ltd>
  8.  
  9.  
  10.       ; drugs/alcohol/pain/adrenalin. there must be other ways outta here.
  11.  
  12.  
  13. ; /******************************************************************************/
  14.  
  15.                                    ; Uh?
  16.  
  17. (set #copying-arplib "Copying ARP.library to LIBS:")
  18. (set #copying-amigaguidelib "Copying AmigaGuide.library to LIBS:")
  19. (set #copying-amigaguide  "Copying AmigaGuide to sys:Utilities/")
  20. (set #copying-amigaguidehelp "Copying Help.Guide to s:")
  21.  
  22. ; /******************************************************************************/
  23.  
  24.                     ; Enough kacking around, let's GO!
  25.  
  26. (copylib
  27.     (prompt "\n" #copying-arplib)
  28.     (help @copylib-help)
  29.     (source "libs/arp.library")
  30.     (dest "libs:")
  31.     (confirm)
  32. )
  33.  
  34. (copylib
  35.     (prompt "\n" #copying-amigaguidelib)
  36.     (help @copylib-help)
  37.     (source "libs/amigaguide.library")
  38.     (dest "libs:")
  39.     (confirm)
  40. )
  41.  
  42.  
  43. (copylib
  44.     (prompt "\n" #copying-amigaguide)
  45.     (help @copylib-help)
  46.     (source "Utilities/Amigaguide")
  47.     (dest "sys:Utilities/")
  48.     (infos)
  49.     (confirm)
  50. )
  51.  
  52.  
  53. (copylib
  54.     (prompt "\n" #copying-amigaguidehelp)
  55.     (help @copylib-help)
  56.     (source "s/Help.Guide")
  57.     (dest "s:")
  58.     (infos)
  59.     (confirm)
  60. )
  61.  
  62.  
  63.